home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / math / difftime.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  87b  |  7 lines

  1. #include <time.h>
  2.  
  3. #undef difftime
  4.  
  5. double difftime(time_t a,time_t b)
  6. { return a-b; }
  7.